home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / ConvertIt / ConvertIt.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  340 b   |  17 lines

  1. program ConvertIt;
  2.  
  3. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  4.  
  5. uses
  6.   Forms,
  7.   ConvertItUnit in 'ConvertItUnit.pas' {Form1},
  8.   EuroConv in 'EuroConv.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.